home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / install-info.postinst < prev    next >
Text File  |  2009-10-27  |  1KB  |  41 lines

  1. #!/bin/sh -e
  2. # postinst maintainer script for the Debian install-info package
  3. #
  4. # Copyright (C) 2009 Norbert Preining <preining@logic.at>.
  5. #
  6. # This file is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU General Public License as published by the
  8. # Free Software Foundation; either version 2 of the License, or (at your
  9. # option) any later version.
  10. #
  11. # This file is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License along
  17. # with this program; if not, write to: The Free Software Foundation, Inc.,
  18. # 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
  19. #
  20. # On Debian GNU/Linux System you can find a copy of the GNU General Public
  21. # License in "/usr/share/common-licenses/GPL".
  22. #
  23.  
  24. umask 022
  25.  
  26. # we only have to call update-info-dir for configure, reconfigure, and
  27. # triggered transitions. All others are simply ignored.
  28.  
  29. case $1 in
  30.     configure|reconfigure|triggered)
  31.         update-info-dir
  32.         ;;
  33.     *)
  34.         ;;
  35. esac
  36.  
  37.  
  38.  
  39. # vim:set tabstop=4 expandtab: #
  40.